-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add clifford simulator(#1) #127
Conversation
* [feat]: init add qfvm clifford * [feat]: add simulate circuit using clifford * [fix]: fix compile bugs * [feat]: init add python * [feat]: add naive final measure * style: format code * fix: ms aligned malloc * fix: apple align malloc * ci: update macos os version to latest * ci: update macos os version to latest * ci: update eigen version * ci: update macos version min version * ci: update macos version min * ci: update pyproject * ci: update pyproject * feat: fix bugs, add clifford test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For cpp code, we also need unit tests, this is not urgent. Maybe we can create an issue as backlog.
@@ -263,3 +263,82 @@ def test_after_measure(self): | |||
[diff_00, diff_11], [2, 0] | |||
) | |||
self.assertTrue(success) | |||
|
|||
|
|||
class TestCliffordSimulatorBasis(BaseTest): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add some test for clifford
@@ -18,6 +18,7 @@ archs = ["x86_64"] | |||
|
|||
|
|||
[tool.cibuildwheel.macos] | |||
environment = {MACOSX_DEPLOYMENT_TARGET = "13.6"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for some new features used in cpp code
[feat]: init add qfvm clifford
[feat]: add simulate circuit using clifford
[fix]: fix compile bugs
[feat]: init add python
[feat]: add naive final measure
style: format code
fix: ms aligned malloc
fix: apple align malloc
ci: update macos os version to latest
ci: update macos os version to latest
ci: update eigen version
ci: update macos version min version
ci: update macos version min
ci: update pyproject
ci: update pyproject
feat: fix bugs, add clifford test